body{
    font-family: 'Lora', serif;
}
.form-control, .form-select, .input-group-text, .table{
    border: 1px solid black;
    border-radius: 0;
}
.input-group-text{
    background-color: white;
}
.form-select:focus, .form-control:focus{
    outline: none;
    box-shadow: none;
    border: 1px solid black;
}

.btn-c,.btn , button{
    border: none;
    border-radius: 0;
    color: white;
    text-decoration: none;
    padding: 10px;
    background-color: #035772;
}
.btn-c:disabled,.btn:disabled, button:disabled{
    opacity: 0.7;
}
.btn-c:hover,.btn:hover, button:hover{
    transition: 0.3s;
    opacity: 0.7;
}
.form-check-c{
    display: flex;
}
.form-check-c input[type="checkbox"][disabled = ""],.form-check-c input[type="radio"][disabled = ""]{
    opacity: 0.4;
}
.form-check-c input[type="checkbox"],.form-check-c input[type="radio"]{
    appearance: none;
    font: inherit;
    color: black;
    cursor: pointer;
    width: 17px;
    height: 17px;
    border: 2px solid black;
    transform: translateY(+0.25em);

    display: grid;
    place-content: center;
}
.form-check-c input[type="checkbox"]::before,.form-check-c input[type="radio"]::before{
    content: "";
    width: 11px;
    height: 11px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 11px 11px #035772;
}
.form-check-c input[type="checkbox"]:checked::before,.form-check-c input[type="radio"]:checked::before{
    transform: scale(1);
}
.form-check-label{
    margin-left: 10px;
}
.form-check-c input[type="radio"]{
    transform: translateY(0);
}
.radios{
    display: flex;
}
legend{
    font-family: 'Podkova', serif;
    font-size: 30px;
}
.city{
    display: hidden;
}
.hider{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    z-index: 19;
}
.hidden{
    display: none;
}